.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(150%);
    width: calc(100% - 40px);
    max-width: 480px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 24px;
    z-index: 10000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1 !important;
    visibility: visible !important;
}

.cookie-banner h3 {
    margin: 0 0 12px 0;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cookie-banner h3::before {
    content: "🍪";
    font-size: 20px;
}

.cookie-banner p {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
}

.cookie-banner ul {
    margin: 12px 0 16px 0;
    padding: 0;
    list-style: none;
}

.cookie-banner li {
    position: relative;
    padding-left: 20px;
    margin: 8px 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner li::before {
    content: "•";
    position: absolute;
    left: 6px;
    color: #00b140;
}

.cookie-banner li strong {
    color: #fff;
}

.cookie-banner a {
    color: #00b140;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cookie-banner a:hover {
    color: #00d150;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.cookie-buttons button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-buttons .accept {
    background: #00b140;
    color: #fff;
}

.cookie-buttons .accept:hover {
    background: #00c94a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 177, 64, 0.4);
}

.cookie-buttons .accept:active {
    transform: translateY(0);
}

.cookie-buttons .decline {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-buttons .decline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.cookie-buttons .decline:active {
    transform: translateY(0);
}

@media (max-width: 480px) {
    .cookie-banner {
        bottom: 10px;
        width: calc(100% - 20px);
        padding: 20px;
        border-radius: 12px;
    }
    .cookie-banner h3 {
        font-size: 16px;
    }
    .cookie-banner p,
    .cookie-banner li {
        font-size: 13px;
    }
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .cookie-buttons button {
        padding: 14px 20px;
    }
}